Skip to content

Commit

Permalink
fix: fix gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
AMorgaut committed May 30, 2024
1 parent ce4ffb6 commit 767765a
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:@ecocode/recommended',
'plugin:vue/vue3-essential',
'@vue/eslint-config-prettier/skip-formatting',
'plugin:storybook/recommended'
],
overrides: [
{
files: ['e2e/**/*.{test,spec}.{js,ts,jsx,tsx}'],
extends: ['plugin:playwright/recommended']
}
],
parserOptions: {
ecmaVersion: 'latest'
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
!.gitignore
!.gitattributes
!.github/
!.eslintrc.cjs
!.nvmrc
!.prettierrc.json

# Ignore generated files
target
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none"
}

0 comments on commit 767765a

Please sign in to comment.