Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// eslint-disable-next-line no-undef
module.exports = {
"extends": [
"eslint:recommended"
],
"env": {
"es6": true,
"browser": true
},
"rules": {
"linebreak-style": "off",
"newline-per-chained-call": "off"
},
"plugins": [
]
}
10 changes: 5 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,8 @@ pip-log.txt
## NodeJS
#############

node_modules/
node_modules/

#VSCode
.vscode/*
!.vscode/settings.json
31 changes: 31 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"editor": {
"formatOnSave": true
},
"eslint": {
"enabled": true,
"autoFixOnSave": true,
"validate": [
"javascript"
],
"workingDirectories": [
{
"directory": "./",
"changeProcessCWD": true
}
]
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.wordWrapColumn": 9999999,
"prettier.singleQuote": true
}
72 changes: 36 additions & 36 deletions navigate.jquery.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
{
"name" : "navigate",
"version" : "1.0.12",
"title" : "jQuery.navigate",
"author" : {
"name" : "Michael Papworth",
"url" : "http://stackoverflow.com/users/2955675/michaelpapworth"
},
"licenses": [
{
"type": "MIT",
"url": "http://raw.github.com/michaelpapworth/jQuery.navigate/master/LICENSE"
}
],
"dependencies" : {
"jquery": ">=1.4.2"
},
"description" : "An abstraction on site navigation. When using website analytics, window.location is not sufficient due to the referer not being passed on the request. The plugin resolves this and allows for both aliased and parametrised URLs. I also provide an API helper method, which enables quick and simple ReSTful URL building capability.",
"keywords" : [
"navigation",
"redirect",
"href",
"window.location",
"url",
"alias",
"parametrised"
],
"docs" : "http://github.com/michaelpapworth/jQuery.navigate/blob/master/README.md",
"download" : "http://github.com/michaelpapworth/jQuery.navigate/blob/master/src/navigate.js",
"homepage" : "http://github.com/michaelpapworth/jQuery.navigate",
"bugs": "http://github.com/michaelpapworth/jQuery.navigate/issues",
"maintainers" : [
{
"name" : "Michael Papworth",
"url" : "http://stackoverflow.com/users/2955675/michaelpapworth"
}
]
"name": "navigate",
"version": "1.0.14",
"title": "jQuery.navigate",
"author": {
"name": "Michael Papworth",
"url": "http://stackoverflow.com/users/2955675/michaelpapworth"
},
"licenses": [
{
"type": "MIT",
"url": "http://raw.github.com/michaelpapworth/jQuery.navigate/master/LICENSE"
}
],
"dependencies": {
"jquery": ">=1.4.2"
},
"description": "An abstraction on site navigation wrapped up in a jQuery plugin. When using website analytics, window.location is not sufficient due to the referer not being passed on the request. The plugin resolves this and allows for both aliased and parametrised URLs. It also provides an API helper method, which enables quick and simple ReSTful URL building capability.",
"keywords": [
"navigation",
"redirect",
"href",
"window.location",
"url",
"alias",
"parametrised"
],
"docs": "http://github.com/michaelpapworth/jQuery.navigate/blob/master/README.md",
"download": "http://github.com/michaelpapworth/jQuery.navigate/blob/master/src/navigate.js",
"homepage": "http://github.com/michaelpapworth/jQuery.navigate",
"bugs": "http://github.com/michaelpapworth/jQuery.navigate/issues",
"maintainers": [
{
"name": "Michael Papworth",
"url": "http://stackoverflow.com/users/2955675/michaelpapworth"
}
]
}
Loading