mirror of
https://github.com/foambubble/foam.git
synced 2026-01-09 14:08:13 -05:00
* Updated typescript and vscode engine version to support workspace trust * updates tsdx to dts, and updated a other deps too * updated eslint configuration * Updated node version * Update lerna * Updated github action configuration * removed glob library
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"env": { "node": true, "es6": true },
|
|
"plugins": ["jest"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:import/typescript",
|
|
"plugin:jest/recommended"
|
|
],
|
|
"rules": {
|
|
"no-redeclare": "off",
|
|
"no-unused-vars": "off",
|
|
"no-use-before-define": "off",
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/interface-name-prefix": "off",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"import/no-extraneous-dependencies": [
|
|
"error",
|
|
{
|
|
"devDependencies": ["**/src/test/**", "**/src/**/*{test,spec}.ts"]
|
|
}
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
// Restrict usage of fs module outside tests to keep foam compatible with the browser
|
|
"files": ["**/src/**"],
|
|
"excludedFiles": ["**/src/test/**", "**/src/**/*{test,spec}.ts"],
|
|
"rules": {
|
|
"no-restricted-imports": [
|
|
"error",
|
|
{
|
|
"name": "fs",
|
|
"message": "Extension code must not rely Node.js filesystem, use vscode.workspace.fs instead."
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"settings": {
|
|
"import/core-modules": ["vscode"],
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [".ts", ".tsx"]
|
|
},
|
|
"import/resolver": {
|
|
"typescript": {
|
|
"alwaysTryTypes": true
|
|
}
|
|
}
|
|
},
|
|
"ignorePatterns": ["**/core/common/**", "*.js"],
|
|
"reportUnusedDisableDirectives": true
|
|
}
|