Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 99c930f

Browse files
authoredSep 2, 2022
Merge pull request #6 from codiga/daniel/1837
feat: view snippet/cookbooks, bug fixes and general improvements
2 parents e2829e8 + 708d63d commit 99c930f

File tree

86 files changed

+1760
-927
lines changed

Some content is hidden

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

86 files changed

+1760
-927
lines changed
 

‎.eslintrc.js

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,30 @@ module.exports = {
44
// A temporary hack related to IDE not resolving correct package.json
55
'import/no-extraneous-dependencies': 'off',
66
'import/no-unresolved': 'error',
7+
'import/no-cycle': 'off',
8+
'import/prefer-default-export': 'off',
79
// Since React 17 and typescript 4.1 you can safely disable the rule
810
'react/react-in-jsx-scope': 'off',
911
'react/jsx-props-no-spreading': 'off',
10-
'import/no-cycle': 'off',
11-
'@typescript-eslint/no-non-null-assertion': 'off',
1212
'react/require-default-props': [2, { functions: 'defaultArguments' }],
13-
'import/prefer-default-export': 'off',
13+
'@typescript-eslint/no-non-null-assertion': 'off',
1414
'@typescript-eslint/ban-ts-comment': 'off',
15+
'@typescript-eslint/no-unused-vars': [
16+
'error',
17+
{
18+
argsIgnorePattern: '^_',
19+
varsIgnorePattern: '^_',
20+
caughtErrorsIgnorePattern: '^_',
21+
},
22+
],
23+
'@typescript-eslint/naming-convention': [
24+
'error',
25+
{
26+
format: null,
27+
selector: 'variable',
28+
leadingUnderscore: 'allow',
29+
},
30+
],
1531
},
1632
parserOptions: {
1733
ecmaVersion: 2020,

‎assets/icon.icns

378 KB
Binary file not shown.

0 commit comments

Comments
 (0)