brogue
Version:
A Grammar based generative text library based on Tracery.
31 lines • 642 B
Plain Text
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@shopify/esnext"
],
"env": {
"node": true,
"mocha": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"]
}
}
},
"rules": {
"no-console": 0,
"indent": ["error", 4],
"indent-legacy": 0,
"id-length": 0,
"babel/object-curly-spacing": 0,
"no-mixed-operators": 0,
"no-negated-condition": 0,
"no-lonely-if": 0
},
}