add linting rules to help out with i18n

This commit is contained in:
caranicas
2022-09-19 11:36:56 -04:00
parent 8777e65996
commit 4733c8fb75
34 changed files with 1977 additions and 149 deletions

View File

@ -0,0 +1,7 @@
module.exports = {
singleQuote: true,
tabWidth: 2,
semi: true,
trailingComma: "es5",
endOfLine: "lf",
};