1
0
Fork 0
mirror of synced 2024-05-19 11:53:53 +12:00
budibase/.eslintrc.json

52 lines
1,014 B
JSON
Raw Normal View History

2020-02-01 03:23:16 +13:00
{
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
2020-02-01 03:23:16 +13:00
},
2020-02-26 04:21:23 +13:00
"parser": "babel-eslint",
2020-02-01 03:23:16 +13:00
"parserOptions": {
"ecmaVersion": 2019,
2020-02-26 04:21:23 +13:00
"sourceType": "module",
"allowImportExportEverywhere": true
2020-02-01 03:23:16 +13:00
},
"ignorePatterns": [
"node_modules",
"dist",
"public",
"*.spec.js",
"bundle.js"
],
"plugins": ["svelte3"],
2020-02-01 03:23:16 +13:00
"extends": ["eslint:recommended"],
"overrides": [
{
"files": ["*.svelte"],
2020-02-01 03:23:16 +13:00
"processor": "svelte3/svelte3"
},
{
"files": ["**/*.ts"],
"parser": "@typescript-eslint/parser",
"plugins": [],
"extends": [
"eslint:recommended"
],
"rules": {
"no-unused-vars": "off",
"no-inner-declarations": "off",
"no-case-declarations": "off",
"no-useless-escape": "off",
"no-undef": "off",
"no-prototype-builtins": "off"
}
2020-02-01 03:23:16 +13:00
}
],
"rules": {
2020-05-18 22:18:31 +12:00
"no-self-assign": "off"
},
"globals": {
"GeolocationPositionError": true
2020-02-01 03:23:16 +13:00
}
}