mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
23 lines
456 B
JSON
23 lines
456 B
JSON
{
|
|
"extends": "standard",
|
|
"env": {
|
|
"mocha": true,
|
|
"es6": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"mocha",
|
|
"standard",
|
|
"@typescript-eslint",
|
|
"promise"
|
|
],
|
|
"rules": {
|
|
"no-var": 2,
|
|
"prefer-const": 2,
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }]
|
|
}
|
|
}
|