Skip to content

Commit

Permalink
Make load only installed plugins, added store plugin to the project, …
Browse files Browse the repository at this point in the history
…but the store plugin need to be changed
  • Loading branch information
bgelatti committed Sep 25, 2024
1 parent bf35e5a commit d79925b
Show file tree
Hide file tree
Showing 70 changed files with 18,171 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/internal-sdk/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
coverage
build*
.eslintrc.js
31 changes: 31 additions & 0 deletions packages/internal-sdk/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
env: {
node: true,
jest: true
},
root: true,
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
ecmaFeatures: {
jsx: false,
},
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
},
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "import"],
ignorePatterns: ['.eslintrc.js'],
extends: [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"eslint:recommended"
],
rules: {
"import/order": 1,
"no-unused-vars": 0
},
};
11 changes: 11 additions & 0 deletions packages/internal-sdk/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"trailingComma": "es5",
"printWidth": 120,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
}
Loading

0 comments on commit d79925b

Please sign in to comment.