@khanacademy/perseus-linter 4.3.9 → 4.4.0
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/dist/es/index.js +8 -4
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/rules/image-markdown.d.ts +10 -0
- package/package.json +2 -2
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import Rule from "../rule";
|
|
2
|
+
/**
|
|
3
|
+
* This rule warns when it sees Markdown images used in the
|
|
4
|
+
* top-level content. We are migrating to use the `image`
|
|
5
|
+
* widget exclusively for images and this helps us to alert
|
|
6
|
+
* content authors of this policy change. This rule ignores
|
|
7
|
+
* markdown images found within other widgets for now.
|
|
8
|
+
*/
|
|
9
|
+
declare const _default: Rule;
|
|
10
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Linter engine for Perseus",
|
|
4
4
|
"author": "Khan Academy",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "4.
|
|
6
|
+
"version": "4.4.0",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@khanacademy/perseus-core": "19.
|
|
25
|
+
"@khanacademy/perseus-core": "19.5.0",
|
|
26
26
|
"@khanacademy/perseus-utils": "2.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|