-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- nette/forms updated from v3.2.2 to v3.2.3 patch See changes: nette/forms@v3.2.2...v3.2.3 Release notes: https://github.com/nette/forms/releases/tag/v3.2.3 Replace #317 Close #319
- Loading branch information
Showing
30 changed files
with
412 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import globals from 'globals'; | ||
import pluginJs from '@eslint/js'; | ||
|
||
export default [ | ||
pluginJs.configs.recommended, | ||
{ | ||
ignores: ['**/*.min.js'], | ||
}, | ||
{ | ||
languageOptions: { | ||
ecmaVersion: 2021, | ||
globals: { | ||
...globals.browser, | ||
'Tracy': 'writeable', | ||
'define': 'readable', | ||
'module': 'readable', | ||
}, | ||
}, | ||
rules: { | ||
indent: ['error', 'tab'], | ||
quotes: ['error', 'single'], | ||
semi: ['error', 'always'], | ||
'func-style': ['error', 'declaration', {'allowArrowFunctions': true}], | ||
'prefer-arrow-callback': ['error'], | ||
'arrow-parens': ['error'], | ||
'arrow-spacing': ['error'], | ||
'no-var': ['error'], | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
{ | ||
"name": "nette-forms", | ||
"version": "3.3.6", | ||
"description": "Client side script for Nette Forms Component", | ||
"keywords": [ | ||
"nette", | ||
"validation", | ||
"forms" | ||
], | ||
"homepage": "https://nette.org", | ||
"author": "David Grudl (https://davidgrudl.com)", | ||
"license": "BSD-3-Clause", | ||
"main": "src/assets/netteForms.js", | ||
"files": [ | ||
"src/assets" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nette/forms.git" | ||
} | ||
"name": "nette-forms", | ||
"version": "3.4.0", | ||
"description": "Client side script for Nette Forms Component", | ||
"keywords": [ | ||
"nette", | ||
"validation", | ||
"forms" | ||
], | ||
"homepage": "https://nette.org", | ||
"author": "David Grudl (https://davidgrudl.com)", | ||
"license": "BSD-3-Clause", | ||
"main": "src/assets/netteForms.js", | ||
"files": [ | ||
"src/assets" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/nette/forms.git" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.1.1", | ||
"eslint": "^9.1.1", | ||
"globals": "^15.1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.