UNPKG

solparse

Version:

PEG.js Solidity parser for Javascript

45 lines 1.12 kB
module.exports = { "env": { "browser": true, "commonjs": true, "es6": true }, "extends": "eslint:recommended", "rules": { "indent": [ "error", 4 ], "linebreak-style": [ "error", "unix" ], "quotes": [ "error", "double" ], "semi": [ "error", "always" ], "space-before-function-paren": [ "error", "never" ], "func-call-spacing": [ "error", "never" ], "comma-dangle": "error", "comma-spacing": "error", "strict": "error", "no-var": "error", "no-caller": "error", "no-inner-declarations": "warn", "no-console": "off", "no-undef": "off", "no-useless-escape": "off", "no-sparse-arrays": "off", // we give undefined as test cases using pattern [, a, b] "no-whitespace-before-property": "off" // TODO: apply this rule on array bracket properties only } };