diff --git a/tools/otagui/.eslintrc.json b/tools/otagui/.eslintrc.json new file mode 100644 index 000000000..416c168f8 --- /dev/null +++ b/tools/otagui/.eslintrc.json @@ -0,0 +1,17 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "parserOptions": { + "parser": "babel-eslint" + }, + "extends": [ + "plugin:vue/recommended" + ], + "rules": { + "indent": ["error", 2], + "vue/no-multiple-template-root": 0 + } +} \ No newline at end of file diff --git a/tools/otagui/.gitignore b/tools/otagui/.gitignore new file mode 100644 index 000000000..21f295a0c --- /dev/null +++ b/tools/otagui/.gitignore @@ -0,0 +1,27 @@ +.DS_Store +node_modules +/dist +/target +/output +stderr* +stdout* + + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/tools/otagui/.prettierrc.js b/tools/otagui/.prettierrc.js new file mode 100644 index 000000000..a6b80c2e1 --- /dev/null +++ b/tools/otagui/.prettierrc.js @@ -0,0 +1,4 @@ +module.exports = { + singleQuote: true, + semi: false +}