html2json
Version:
html to json & json to html
34 lines (33 loc) • 442 B
JavaScript
module.exports = {
"env": {
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-undef": [
"off"
],
"comma-dangle": [
"error",
"only-multiline"
],
"no-console": [
"off"
]
}
};