@kunalnagarco/eslint-config 2.3.0-beta.0 → 2.3.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,5 @@
1
1
  # @kunalnagarco/eslint-config
2
2
 
3
- ## 2.3.0-beta.0
4
-
5
- ### Minor Changes
6
-
7
- - Add support for prereleases
8
-
9
3
  ## 2.2.0
10
4
 
11
5
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kunalnagarco/eslint-config",
3
- "version": "2.3.0-beta.0",
3
+ "version": "2.3.0-beta.2",
4
4
  "description": "An ESLint configuration for use across javascript projects",
5
5
  "repository": {
6
6
  "url": "git+https://github.com/kunalnagarco/ui.git"
package/src/index.js CHANGED
@@ -1,9 +1,8 @@
1
- import airbnbConfig from 'airbnb';
2
- import airbnbTypescriptConfig from 'airbnb-typescript';
3
- import prettierConfig from 'prettier';
4
- import importPlugin from 'eslint-plugin-import';
5
- import typescriptEslintPlugin from '@typescript-eslint';
6
- import jestPlugin from 'jest';
1
+ const airbnbConfig = require('eslint-config-airbnb');
2
+ const airbnbTypescriptConfig = require('eslint-config-airbnb-typescript');
3
+ const prettierConfig = require('eslint-config-prettier');
4
+ const importPlugin = require('eslint-plugin-import');
5
+ const typescriptEslintPlugin = require('@typescript-eslint/eslint-plugin');
7
6
 
8
7
  module.exports = {
9
8
  airbnbConfig,
@@ -12,7 +11,6 @@ module.exports = {
12
11
  plugins: {
13
12
  importPlugin,
14
13
  typescriptEslintPlugin,
15
- jestPlugin,
16
14
  },
17
15
  env: {
18
16
  browser: true,