Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: Support for New Semantic Release Version. #137

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions .eslintignore
@@ -0,0 +1,7 @@
/tests/**/*.js
!/**/.eslintrc.js
/scripts/release/node_modules
/coverage/
/dist/
**/node_modules/**
node_modules/*
22 changes: 22 additions & 0 deletions .eslintrc.cjs
@@ -0,0 +1,22 @@
module.exports = {
env: {
es2021: true,
node: true,
jest: true
},
parserOptions: {
ecmaVersion: 12,
sourceType: 'module'
},
extends: ['eslint:recommended', 'airbnb-base', 'prettier'],
plugins: ['prettier'],
rules: {
'import/extensions': [0, 'ignorePackages', { js: 'never', jsx: 'never' }],
'max-len': 0,
'no-console': 0,
'no-await-in-loop': 0,
'no-multiple-empty-lines': 0,
'space-in-parens': 0,
'no-spaced-func': 0
}
};
5 changes: 5 additions & 0 deletions .prettierignore
@@ -0,0 +1,5 @@
dist;
dist - types;
coverage.vscode;
yarn.lock;
package - lock.json;
8 changes: 8 additions & 0 deletions .prettierrc.yaml
@@ -0,0 +1,8 @@
semi: true
trailingComma: none
singleQuote: true
tabWidth: 2
useTabs: false
bracketSpacing: true
insertFinalNewline: true
printWidth: 120
13 changes: 13 additions & 0 deletions babel.config.cjs
@@ -0,0 +1,13 @@
// babel.config.js
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current'
}
}
]
]
};
5 changes: 5 additions & 0 deletions jest.config.cjs
@@ -0,0 +1,5 @@
module.exports = {
transform: {
'\\.[jt]sx?$': 'babel-jest'
}
};