UNPKG

@alicd/templateparser

Version:

walle template parser

52 lines 951 B
module.exports = { "parser": "babel-eslint", "env": { "browser": true, "commonjs": true, "es6": true }, "extends": "eslint:recommended", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018, "sourceType": "module" }, "plugins": [ "react" ], "rules": { "no-useless-escape": [ "off" ], "no-unused-vars": [ "off" ], "indent": [ "warn" ], "no-undef": [ "off" ], "no-console": [ "off" ], "indent": [ "error", 2 ], "linebreak-style": [ "error", "unix" ], "quotes": [ "error", "single" ], "semi": [ "error", "always" ] } };