mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-12 19:00:39 -07:00
19 lines
328 B
JSON
19 lines
328 B
JSON
{
|
|
"extends": ["../.eslintrc.json"],
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"plugins": [
|
|
"mocha"
|
|
],
|
|
"parserOptions": {
|
|
"project": "test/tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"deprecation/deprecation": "off",
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"no-unused-expressions": "off",
|
|
"no-new": "off"
|
|
}
|
|
}
|