1
0
Fork 0
mirror of synced 2024-06-02 02:25:17 +12:00
budibase/.eslintrc.json

33 lines
554 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"
}
],
"rules": {
2020-05-18 22:18:31 +12:00
"no-self-assign": "off"
2020-02-01 03:23:16 +13:00
}
}