mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 14:58:25 -04:00
29 lines
476 B
JSON
29 lines
476 B
JSON
{
|
|
"extends": [
|
|
"plugin:compat/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2015
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"overrides": [{
|
|
"files": ["api/**/*.js"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"browser": false
|
|
},
|
|
"rules": {
|
|
"compat/compat": "off"
|
|
}
|
|
}],
|
|
"rules": {},
|
|
"ignorePatterns": ["public/**"]
|
|
}
|