GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#15)
by matas
49s
created

demo.js (1 issue)

Labels
Severity
1
var mjml_templates = {
2
  example1: {
3
    racoon1: { id: 'tem_xxx', version: 'ver_xxx' },
4
    racoon2: { id: 'tem_xxx', version: 'ver_xxx' }
5
  },
6
  example2: {
7
    racoon1: { id: 'tem_xxx', version: 'ver_xxx' }
8
  }
9
}
10
11
var config = {
12
  swu_api_key: 'test_xxx',
13
  path: 'test/templates',
14
  mjml_src: 'test/mjml',
15
  views_path: 'test/views/index',
16
  port: 3001
17
};
18
19
swu_mjml = require('./lib/swu_mjml')(config, mjml_templates);
0 ignored issues
show
The variable swu_mjml seems to be never declared. Assigning variables without defining them first makes them global. If this was intended, consider making it explicit like using window.swu_mjml.
Loading history...
20
swu_mjml.start()
21