2020-01-31 15:23:16 +01:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es6": true,
|
2020-02-03 10:24:25 +01:00
|
|
|
"jest": true,
|
|
|
|
"node": true
|
2020-01-31 15:23:16 +01:00
|
|
|
},
|
2023-07-05 19:00:50 +02:00
|
|
|
"parser": "@babel/eslint-parser",
|
2020-01-31 15:23:16 +01:00
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2019,
|
2020-02-25 16:21:23 +01:00
|
|
|
"sourceType": "module",
|
|
|
|
"allowImportExportEverywhere": true
|
2020-01-31 15:23:16 +01:00
|
|
|
},
|
2021-06-15 13:42:50 +02:00
|
|
|
"ignorePatterns": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"public",
|
|
|
|
"*.spec.js",
|
2023-06-26 16:04:13 +02:00
|
|
|
"bundle.js"
|
2021-06-15 13:42:50 +02:00
|
|
|
],
|
2020-01-31 15:23:16 +01:00
|
|
|
"extends": ["eslint:recommended"],
|
2023-11-17 14:39:52 +01:00
|
|
|
"plugins": ["import", "eslint-plugin-local-rules"],
|
2020-01-31 15:23:16 +01:00
|
|
|
"overrides": [
|
|
|
|
{
|
2023-07-05 19:00:50 +02:00
|
|
|
"files": ["**/*.svelte"],
|
|
|
|
"extends": "plugin:svelte/recommended",
|
|
|
|
"parser": "svelte-eslint-parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"parser": "@babel/eslint-parser",
|
|
|
|
"ecmaVersion": 2019,
|
|
|
|
"sourceType": "module",
|
|
|
|
"allowImportExportEverywhere": true
|
|
|
|
}
|
2022-03-25 12:17:58 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": ["**/*.ts"],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
2023-06-26 16:04:13 +02:00
|
|
|
"extends": ["eslint:recommended"],
|
2022-03-25 12:17:58 +01:00
|
|
|
"rules": {
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
"no-inner-declarations": "off",
|
|
|
|
"no-case-declarations": "off",
|
|
|
|
"no-useless-escape": "off",
|
|
|
|
"no-undef": "off",
|
2023-11-17 14:39:52 +01:00
|
|
|
"no-prototype-builtins": "off",
|
|
|
|
"local-rules/no-budibase-imports": "error"
|
2022-03-25 12:17:58 +01:00
|
|
|
}
|
2024-01-31 14:47:27 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": ["packages/builder/**/*"],
|
|
|
|
"rules": {
|
|
|
|
"no-console": ["error", { "allow": ["warn", "error", "debug"] } ]
|
|
|
|
}
|
2020-01-31 15:23:16 +01:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"rules": {
|
2023-07-05 19:00:50 +02:00
|
|
|
"no-self-assign": "off",
|
2023-11-17 13:03:28 +01:00
|
|
|
"no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"varsIgnorePattern": "^_",
|
|
|
|
"argsIgnorePattern": "^_",
|
|
|
|
"destructuredArrayIgnorePattern": "^_"
|
|
|
|
}
|
|
|
|
],
|
2023-11-20 15:46:24 +01:00
|
|
|
"import/no-relative-packages": "error",
|
2023-11-20 16:15:43 +01:00
|
|
|
"import/export": "error",
|
2023-11-20 21:52:29 +01:00
|
|
|
"import/no-duplicates": "error",
|
|
|
|
"import/newline-after-import": "error"
|
2022-03-08 17:41:21 +01:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"GeolocationPositionError": true
|
2020-01-31 15:23:16 +01:00
|
|
|
}
|
2021-06-15 13:42:50 +02:00
|
|
|
}
|