https://github.com/probmods/webppl
Raw File
Tip revision: daabd60361f72eef53f69005751facce34c7f916 authored by null-a on 18 April 2019, 13:04:24 UTC
StudentT Tweaks (#931)
Tip revision: daabd60
.eslintrc.wppl.js
module.exports = {
  'env': {
    // required to parse e.g. object literal property short hand.
    'es6': true
  },
  'rules': {
    'no-undef': 'off',
    'strict': 'off'
  }
};
back to top