Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
3a99b31
Fixing 'log' examples
Jan 14, 2015
de3bf6f
Fixing 'on' param documentation
Jan 15, 2015
15fea27
Adding compiled files
Jan 15, 2015
7571c41
Setting the necessary values until we add modules
Jan 2, 2015
68375ca
Fixing formatting and minor refactor
Jan 2, 2015
694e5f0
Fixing app handlers styling
Jan 5, 2015
12b5c49
Fixing 'classes' styling
Jan 5, 2015
13e6e0f
Fixing 'constants' styling
Jan 5, 2015
511cede
Fixing 'events' styling
Jan 5, 2015
acd0428
Fixing 'ui' styling
Jan 5, 2015
659a546
Switching to eslint for additional rules
Jan 5, 2015
0726efd
Fixing styling and lint errors in 'ui.js'
Jan 5, 2015
de7c65a
Tweaking rules for eval and return
Jan 8, 2015
e267a2e
Removing commented code
Jan 8, 2015
94a7f97
Fixing styling and lint errors
Jan 8, 2015
93eb761
Fixing styling and lint errors
Jan 8, 2015
3c1a321
Fixing styling and lint errors for 'classes'
Jan 8, 2015
71a6cda
Fixing styling and lint errors for 'container'
Jan 8, 2015
cada63b
Fixing styling and lint errors for 'events'
Jan 8, 2015
79fa138
Fixing styling and lint errors for 'rpc'
Jan 8, 2015
2ecd770
Fixing inclusion of eslint files
Jan 9, 2015
52a1a86
Fixing check for node and element
Jan 9, 2015
aed0981
Adding compiled files
Jan 9, 2015
d28ead8
Minor: comments
Jan 9, 2015
7cc187e
Minor refactor & boolean logic fix
Jan 9, 2015
75a6702
Adding compiled files
Jan 9, 2015
1467703
Fixing test whitespace
Jan 9, 2015
e7ad105
Fixing test whitespace & formatting
Jan 9, 2015
e636b73
Removing jshint
Jan 9, 2015
4c8ab9e
Adding back missing IFFE parens
Jan 12, 2015
61eea9b
Refactoring CDS example to match styling
Jan 12, 2015
a8e898a
Updating with CDS example caveats
Jan 12, 2015
1e64525
Explicitly specifying lib files
Jan 12, 2015
a1b853d
Fixing paths to F2
Jan 12, 2015
53fd7dd
Fixing boolean logic
Jan 12, 2015
d23acbf
Adding compiled files
Jan 13, 2015
d2a090b
Formatting docs
Jan 13, 2015
3835d96
Removing globals from lint rules
Jan 13, 2015
cf95ea8
Rearranging tasks
Jan 14, 2015
a032416
Fixing comment in example
Jan 14, 2015
8dc9ffc
Fixing 'on' param name
Jan 14, 2015
49b8113
Undoing 'on' param name change
Jan 14, 2015
dbc8ae2
Undoing comment fix
Jan 14, 2015
e4f3b0f
Removing unused packages
Jan 15, 2015
8c2e300
Adding 'module' to globals
Jan 20, 2015
30813d8
Adding browserify
Jan 20, 2015
82ed22c
Initial commit of modular source
Jan 20, 2015
0b0b413
Switching reloaded version to debug
Jan 20, 2015
99e612b
Cleaning up tests that relied on F2.log
Jan 21, 2015
3037cb8
Fixing references to F2
Jan 21, 2015
929af90
Switching jquery to npm package
Jan 21, 2015
75c6e6f
Removing jquery from concat
Jan 21, 2015
5ab897a
Switching eventemitter to npm
Jan 21, 2015
18dcf13
Moving easyXDM to npm package
Jan 21, 2015
51beb07
Removing eventtmitter
Jan 21, 2015
8927d77
Pulling eventemitter and easyXdm from concat
Jan 21, 2015
12e4fa4
Requiring bootstrap-modal via require
Jan 21, 2015
4259208
Moving constants into separate files
Jan 21, 2015
8302fb4
Moving classes into separate files
Jan 21, 2015
ee658fc
Fixing path to no-third-party
Jan 21, 2015
b03e3bd
Adding compiled files
Jan 21, 2015
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
44 changes: 44 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"env": {
"browser": true,
"amd": true,
"jasmine": true
},
"globals": {
"module": true,
"runs": true,
"itConditionally": true,
// Examples
"F2_jsonpCallback_com_openf2_examples_javascript_cds": true
},
"rules": {
"dot-notation": false,
"new-cap": false,
"no-eval": false,
"no-comma-dangle": true,
"no-cond-assign": true,
"no-console": false,
"quotes": [1, "single"],
"strict": false,
"no-underscore-dangle": false,
"valid-jsdoc": [2, {
"requireReturn": false
}],
// Stylistic
"block-scoped-var": true,
"no-else-return": true,
"no-eq-null": true,
"func-style": [2, "declaration"],
"spaced-line-comment": ["always"],
"space-in-parens": ["never"],
"space-in-brackets": ["never"],
"space-before-blocks": "always",
"space-after-keywords": "always",
"space-after-function-name": "never",
"operator-assignment": [2, "always"],
// TODO: reverse when issues are fixed
"consistent-return": false,
"no-use-before-define": false,
"no-unused-vars": false
}
}
22 changes: 0 additions & 22 deletions .jshintrc

This file was deleted.

Loading