mirror of
https://github.com/lensapp/lens.git
synced 2024-11-10 10:36:25 +03:00
1f41cc800b
Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
module.exports = {
|
|
ignorePatterns: ["src/extensions/npm/extensions/api.d.ts"],
|
|
overrides: [
|
|
{
|
|
files: [
|
|
"src/renderer/**/*.js",
|
|
"build/**/*.js",
|
|
"extensions/**/*.js"
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
],
|
|
env: {
|
|
node: true
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
"indent": ["error", 2],
|
|
"no-unused-vars": "off",
|
|
}
|
|
},
|
|
{
|
|
files: [
|
|
"build/*.ts",
|
|
"src/**/*.ts",
|
|
"integration/**/*.ts",
|
|
"src/extensions/**/*.ts*",
|
|
"extensions/**/*.ts*"
|
|
],
|
|
parser: "@typescript-eslint/parser",
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"@typescript-eslint/ban-ts-comment": "off",
|
|
"@typescript-eslint/no-empty-interface": "off",
|
|
"indent": ["error", 2]
|
|
},
|
|
},
|
|
{
|
|
files: [
|
|
"src/renderer/**/*.tsx",
|
|
],
|
|
parser: "@typescript-eslint/parser",
|
|
extends: [
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
sourceType: 'module',
|
|
jsx: true,
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/interface-name-prefix": "off",
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/no-empty-interface": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"@typescript-eslint/ban-ts-ignore": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"@typescript-eslint/no-empty-function": "off",
|
|
"indent": ["error", 2]
|
|
},
|
|
}
|
|
]
|
|
};
|