@khanacademy/perseus-linter 0.2.1 → 0.2.3

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/.eslintrc.js ADDED
@@ -0,0 +1,11 @@
1
+ /* eslint-disable import/no-commonjs */
2
+ const path = require("path");
3
+
4
+ module.exports = {
5
+ rules: {
6
+ "import/no-extraneous-dependencies": [
7
+ "error",
8
+ {packageDir: [__dirname, path.join(__dirname, "../../")]},
9
+ ],
10
+ },
11
+ };
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @khanacademy/perseus-linter
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - f567f660: Update the eslint config to look at both the package.json for the package and the one from the root
8
+ - Updated dependencies [f567f660]
9
+ - @khanacademy/perseus-error@0.1.3
10
+
11
+ ## 0.2.2
12
+
13
+ ### Patch Changes
14
+
15
+ - bf180fe1: Fix our use of import/no-extraneous-dependencies
16
+ - Updated dependencies [bf180fe1]
17
+ - @khanacademy/perseus-error@0.1.2
18
+
3
19
  ## 0.2.1
4
20
 
5
21
  ### Patch Changes