mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-12 19:00:39 -07:00
22 lines
339 B
JSON
22 lines
339 B
JSON
{
|
|
"extends": ["standard"],
|
|
"env": {
|
|
"mocha": true,
|
|
"es6": true,
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"plugins": [
|
|
"mocha",
|
|
"standard",
|
|
"promise"
|
|
],
|
|
"rules": {
|
|
"no-var": 2,
|
|
"prefer-const": 2,
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
"no-unused-vars": "off",
|
|
"indent": "off"
|
|
}
|
|
}
|