Skip to content

Commit 69ae84a

Browse files
committedSep 22, 2022
chore: migrate build script
1 parent a584942 commit 69ae84a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2716
-2817
lines changed
 

‎utils/.eslintrc.js ‎.eslintrc.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ module.exports = {
3333
'no-unused-vars': 'off',
3434
'@typescript-eslint/no-unused-vars': [
3535
'error',
36-
{argsIgnorePattern: '^_', varsIgnorePattern: '^_'},
36+
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
3737
],
3838
'no-shadow': 'off',
39-
'@typescript-eslint/no-shadow': ['error', {allow: ['_']}],
39+
'@typescript-eslint/no-shadow': ['error', { allow: ['_'] }],
4040
'lines-between-class-members': ['error', 'always'],
41-
'no-param-reassign': ['warn', {props: true, ignorePropertyModificationsFor: ['draft']}],
41+
'no-param-reassign': ['warn', { props: true, ignorePropertyModificationsFor: ['draft'] }],
4242
'padding-line-between-statements': [
4343
'error',
44-
{blankLine: 'always', prev: '*', next: 'return'},
45-
{blankLine: 'always', prev: ['const', 'let', 'var'], next: '*'},
44+
{ blankLine: 'always', prev: '*', next: 'return' },
45+
{ blankLine: 'always', prev: ['const', 'let', 'var'], next: '*' },
4646
{
4747
blankLine: 'any',
4848
prev: ['const', 'let', 'var'],

‎.prettierrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"printWidth": 100,
3-
"bracketSpacing": false,
3+
"bracketSpacing": true,
44
"semi": true,
55
"singleQuote": true,
66
"tabWidth": 2,
77
"trailingComma": "all",
88
"endOfLine": "auto"
9-
}
9+
}

0 commit comments

Comments
 (0)
Please sign in to comment.