Skip to content

Commit

Permalink
Add lint config for image-debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronAsAChimp committed Dec 5, 2023
1 parent 18065c3 commit b00a5b1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions image-debugger/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"env": {
"es6": true
},
"extends": "google",
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"ignorePatterns": [
"flow-typed/**/*.js"
],
"rules": {
"indent": ["error", "tab"],
"no-tabs": ["off"],
"camelcase": ["off"],
"spaced-comment": ["error", "always", { "markers": [":", "::"] }],
"max-len": ["error", {
"code": 120,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}]
}
}

0 comments on commit b00a5b1

Please sign in to comment.