@mediatool/eslint-config-mediatool 1.1.6 → 1.1.7

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.
Files changed (2) hide show
  1. package/.eslintrc.js +6 -1
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -143,10 +143,15 @@ module.exports = {
143
143
  },
144
144
  {
145
145
  files: [ '*.ts', '*.tsx' ],
146
+ extends: [ 'airbnb', 'airbnb-typescript' ],
146
147
  plugins: [ '@typescript-eslint' ],
147
148
  parser: '@typescript-eslint/parser',
148
149
  parserOptions: {
149
- jsx: true,
150
+ project: './tsconfig.json',
151
+ sourceType: 'module',
152
+ ecmaFeatures: {
153
+ jsx: true,
154
+ },
150
155
  },
151
156
  rules: typescriptRules,
152
157
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediatool/eslint-config-mediatool",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "main": ".eslintrc.js",
5
5
  "scripts": {
6
6
  "pretest": "yarn",