vexflow
Version:
A JavaScript library for rendering music notation and guitar tablature
67 lines (65 loc) • 1.72 kB
JSON
{
"extends": "airbnb-base",
"root": true,
"env": {
"browser": true
},
"rules": {
"arrow-parens": [0],
"camelcase": [0],
"class-methods-use-this": [0],
"comma-dangle": [0],
"dot-location": [2, "property"],
"function-paren-newline": [0],
"implicit-arrow-linebreak": [0],
"import/newline-after-import": [0],
"import/no-cycle": [0],
"import/prefer-default-export": [0],
"lines-between-class-members": [0],
"max-len": [2, 100],
"new-cap": [0],
"no-case-declarations": [2],
"no-confusing-arrow": [0],
"no-continue": [0],
"no-else-return": [0],
"no-lonely-if": [0],
"no-mixed-operators": [0],
"no-multi-assign": [0],
"no-multi-spaces": [0],
"no-param-reassign": [0],
"no-plusplus": [0],
"no-restricted-globals": [0],
"no-restricted-properties": [0],
"no-restricted-syntax": [
2,
"DebuggerStatement",
"LabeledStatement",
"WithStatement"
],
"no-shadow": [0],
"no-undef-init": [0],
"no-use-before-define": [0],
"object-curly-newline": [0],
"object-property-newline": [0],
"operator-assignment": [0],
"operator-linebreak": [0],
"prefer-destructuring": [0],
"prefer-numeric-literals": [0],
"prefer-spread": [0],
"prefer-template": [0],
"quote-props": [0],
"space-before-function-paren": [2, "never"],
"space-unary-ops": [0],
"spaced-comment": [0],
"strict": [2, "global"],
"yoda": [2, "never", { "exceptRange": true }],
"no-var": [0],
"no-undef": [0],
"wrap-iife": [0],
"func-names": [0],
"vars-on-top": [0],
"max-len": [0],
"object-shorthand": [0],
"prefer-arrow-callback": [0]
}
}