Added tests
This commit is contained in:
parent
753a55c9c1
commit
24e61efcf1
30 changed files with 2089 additions and 1737 deletions
34
.eslintrc.js
Normal file
34
.eslintrc.js
Normal file
|
@ -0,0 +1,34 @@
|
|||
module.exports = {
|
||||
extends: ["eslint:recommended", "plugin:react-hooks/recommended"],
|
||||
rules: {
|
||||
orderedImports: true,
|
||||
completedDocs: [
|
||||
true,
|
||||
{
|
||||
enums: true,
|
||||
functions: {
|
||||
visibilities: ["exported"],
|
||||
},
|
||||
interfaces: {
|
||||
visibilities: ["exported"],
|
||||
},
|
||||
methods: {
|
||||
tags: {
|
||||
content: {},
|
||||
existence: ["inheritdoc", "override"],
|
||||
},
|
||||
},
|
||||
types: {
|
||||
visibilities: ["exported"],
|
||||
},
|
||||
variables: {
|
||||
visibilities: ["exported"],
|
||||
},
|
||||
},
|
||||
],
|
||||
maxClassesPerFile: false,
|
||||
maxLineLength: false,
|
||||
memberOrdering: false,
|
||||
variableName: false,
|
||||
},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue