|
1 | | -const js = require("@eslint/js"); |
2 | | -const tseslint = require("typescript-eslint"); |
3 | | -const headerPlugin = require("eslint-plugin-header"); |
4 | | -const licenseHeaderPlugin = require("eslint-plugin-license-header"); |
5 | | -const unusedImportsPlugin = require("eslint-plugin-unused-imports"); |
6 | | -const importPlugin = require("eslint-plugin-import"); |
| 1 | +/* |
| 2 | + * Copyright (c) 1998-2025 Kx Systems Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the |
| 5 | + * License. You may obtain a copy of the License at |
| 6 | + * |
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + * |
| 9 | + * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an |
| 10 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| 11 | + * specific language governing permissions and limitations under the License. |
| 12 | + */ |
| 13 | + |
| 14 | +import js from "@eslint/js"; |
| 15 | +import headerPlugin from "eslint-plugin-header"; |
| 16 | +import importPlugin from "eslint-plugin-import"; |
| 17 | +import licenseHeaderPlugin from "eslint-plugin-license-header"; |
| 18 | +import unusedImportsPlugin from "eslint-plugin-unused-imports"; |
| 19 | +import * as tseslint from "typescript-eslint"; |
7 | 20 |
|
8 | 21 | const currentYear = new Date().getFullYear(); |
9 | 22 |
|
10 | | -module.exports = [ |
| 23 | +export default [ |
11 | 24 | { |
12 | 25 | ignores: ["**/*.d.ts", "**/*.js", "src/ipc/**"], |
13 | 26 | }, |
|
0 commit comments