Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pakaoraki committed Apr 23, 2024
1 parent 73d0ea6 commit 45187b5
Show file tree
Hide file tree
Showing 3 changed files with 214 additions and 208 deletions.
26 changes: 14 additions & 12 deletions .eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ import gjsConfig from "./lint/eslintrc-gjs.config.js";
import shellConfig from "./lint/eslintrc-shell.config.js";

export default [
gjsConfig,
shellConfig,
{
parserOptions: {
sourceType: 'module',
},
rules: {
// Rules overridden to match this codebase
'arrow-parens': ['error', 'always'],
'comma-dangle': ['error', 'never'],
curly: ['error', 'all'],
'prefer-template': 'off',
},
gjsConfig,
shellConfig,
{
parserOptions: {
sourceType: 'module',
},
rules: {
// Rules overridden to match this codebase
'arrow-parens': ['error', 'always'],
'comma-dangle': ['error', 'never'],
curly: ['error', 'all'],
'prefer-template': 'off',
},
}
}
];
Loading

0 comments on commit 45187b5

Please sign in to comment.