1.1.2 • Published 3 months ago

@libercapital/eslint-config v1.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

ESLint Libercapital

Basic setup

.editorconfig

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

[*.txt]
trim_trailing_whitespace = false
insert_final_newline = false

[{Makefile,**.mk}]
indent_style = tab

.eslintrc

{
  "extends": ["@libercapital/eslint-config"]
}

.prettierrc

{
  "singleQuote": false,
  "tabWidth": 2
}

.prettierignore

.gitignore
.prettierignore
yarn.lock
yarn-error.log
package-lock.json
LICENSE
*.ejs
dist
coverage
pnpm-lock.yaml

VSCode

.vscode/extensions.json

{
  "recommendations": [
    "editorconfig.editorconfig",
    "dbaeumer.vscode-eslint",
    "esbenp.prettier-vscode"
  ]
}

.vscode/settings.json

{
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
}
1.1.1

3 months ago

1.1.2

3 months ago

1.1.0

3 months ago

1.0.2

5 months ago