Skip to content

Commit

Permalink
chore: add non-working linting pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Jan 5, 2023
1 parent 65ccb28 commit 47015ad
Show file tree
Hide file tree
Showing 7 changed files with 1,020 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
17 changes: 17 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
root: true,

env: {
browser: true,
node: true
},

extends: [
"eslint:recommended",
"plugin:vue/vue3-recommended",
"prettier"
],

plugins: [],
rules: {}
};
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ npm-debug.log
node_modules/
.npm

# Caches
.cache
.eslintcache

# Builds
dist

Expand Down
17 changes: 17 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# NPM
npm-debug.log
node_modules/
.npm

# Caches
.cache
.eslintcache

# Builds
build

# Editor
.nova

# macOS
.DS_Store
5 changes: 5 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": false
}
Loading

0 comments on commit 47015ad

Please sign in to comment.