mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
34 lines
761 B
JavaScript
34 lines
761 B
JavaScript
module.exports = {
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:import/typescript",
|
|
],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
},
|
|
plugins: ["@typescript-eslint", "import"],
|
|
globals: {
|
|
module: true,
|
|
},
|
|
settings: {
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [".ts"],
|
|
},
|
|
"import/resolver": {
|
|
typescript: true,
|
|
node: true,
|
|
},
|
|
"import/extensions": [".ts"],
|
|
},
|
|
rules: {
|
|
"linebreak-style": ["error", "unix"],
|
|
semi: ["error", "never"],
|
|
},
|
|
}
|