Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Snazzah/slash-create
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Jul 15, 2024
2 parents f024f84 + a8c799b commit 7fdc83b
Show file tree
Hide file tree
Showing 12 changed files with 2,207 additions and 1,776 deletions.
13 changes: 12 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,18 @@ module.exports = {
},
plugins: ['@typescript-eslint'],
rules: {
'prettier/prettier': 'warn',
'prettier/prettier': [
'warn',
{
arrowParens: 'always',
semi: true,
singleQuote: true,
tabWidth: 2,
useTabs: false,
trailingComma: 'none',
printWidth: 120
}
],
'no-cond-assign': [2, 'except-parens'],
'no-unused-vars': 0,
'@typescript-eslint/no-unused-vars': 1,
Expand Down
Loading

0 comments on commit 7fdc83b

Please sign in to comment.