@tpluscode/eslint-config 2.2.1 → 2.2.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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.2.2
4
+ ### Patch Changes
5
+
6
+ - 330de86: Wrong base config for `ts-no-rdf`
7
+
3
8
  ## 2.2.1
4
9
  ### Patch Changes
5
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpluscode/eslint-config",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/ts-no-rdf.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import tsPlugin from '@typescript-eslint/eslint-plugin'
2
2
  import tsParser from '@typescript-eslint/parser'
3
3
  import importPlugin from 'eslint-plugin-import'
4
- import jsConfig from './js.js'
4
+ import jsConfig from './no-rdf.js'
5
5
 
6
6
  function rulesFrom(config) {
7
7
  return config && config.rules ? config.rules : {}