Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Opender Singh committed Oct 14, 2019
1 parent 6b4c0c8 commit 693d658
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 42 deletions.
88 changes: 48 additions & 40 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,42 +1,50 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json",
"tsconfigRootDir": "."
},
"env": {
"jest/globals": true
},
"plugins": ["@typescript-eslint", "jest", "prettier", "simple-import-sort"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"plugin:import/typescript",
"plugin:import/errors",
"plugin:import/warnings"
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json",
"tsconfigRootDir": "."
},
"env": {
"jest/globals": true
},
"plugins": [
"@typescript-eslint",
"jest",
"prettier",
"simple-import-sort"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"plugin:import/typescript",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/array-type": [
"warn",
"generic"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/array-type": ["warn", "generic"],
"@typescript-eslint/no-explicit-any": "off",
"react/prop-types": "off",
"import/prefer-default-export": "off",
"no-undef":"off",
"no-unused-expressions": [
"warn",
{
"allowShortCircuit": true,
"allowTernary": true
}
],
"simple-import-sort/sort": "error",
"sort-imports": "off",
"import/order": "off"
},
}
"@typescript-eslint/no-explicit-any": "off",
"react/prop-types": "off",
"import/prefer-default-export": "off",
"no-undef": "off",
"no-unused-expressions": [
"warn",
{
"allowShortCircuit": true,
"allowTernary": true
}
],
"simple-import-sort/sort": "error",
"sort-imports": "off",
"import/order": "off"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@develohpanda/fluent-builder",
"version": "0.3.3",
"version": "1.0.0",
"description": "A typed, fluent builder for creating objects in Typescript",
"repository": "https://github.com/develohpanda/fluent-builder",
"author": "Opender Singh <[email protected]>",
Expand Down Expand Up @@ -61,4 +61,4 @@
"peerDependencies": {
"prop-types": ">=15.7.2"
}
}
}

0 comments on commit 693d658

Please sign in to comment.