@schemastore/creatomic 0.0.4 → 0.0.5
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/LICENSE +1 -1
- package/README.md +1 -1
- package/index.d.ts +4 -4
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -8,5 +8,5 @@ This package contains type definitions for creatomic.
|
|
|
8
8
|
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/creatomic.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, Feb 24, 2023, 11:23:32 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
@@ -17,7 +17,7 @@ export interface JSONSchemaForCreatomicConfigurationFile {
|
|
|
17
17
|
/**
|
|
18
18
|
* An additional rules directory
|
|
19
19
|
*/
|
|
20
|
-
"tslint.rulesDirectory"?: string[];
|
|
20
|
+
"tslint.rulesDirectory"?: string | string[];
|
|
21
21
|
/**
|
|
22
22
|
* Validate a file when there is only a default tslint configuration is found
|
|
23
23
|
*/
|
|
@@ -33,7 +33,7 @@ export interface JSONSchemaForCreatomicConfigurationFile {
|
|
|
33
33
|
/**
|
|
34
34
|
* Configure glob patterns of file paths to exclude from linting
|
|
35
35
|
*/
|
|
36
|
-
"tslint.exclude"?: string[];
|
|
36
|
+
"tslint.exclude"?: string | string[];
|
|
37
37
|
/**
|
|
38
38
|
* Run the linter on save (onSave) or on type (onType)
|
|
39
39
|
*/
|
|
@@ -45,7 +45,7 @@ export interface JSONSchemaForCreatomicConfigurationFile {
|
|
|
45
45
|
/**
|
|
46
46
|
* Turns auto fix on save on or off, or defines which rules (e.g. `no-var-keyword`) to auto fix on save.
|
|
47
47
|
*/
|
|
48
|
-
"tslint.autoFixOnSave"?: string[];
|
|
48
|
+
"tslint.autoFixOnSave"?: boolean | string[];
|
|
49
49
|
/**
|
|
50
50
|
* Always show rule failures as warnings, independent of the tslint configuration.
|
|
51
51
|
*/
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for creatomic.",
|
|
5
5
|
"license": "MIT",
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/creatomic",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/creatomic",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "e7449527b6be2eceb70fdc49e77625469a938166e55c89b982b4d6b08cf9c277",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|